home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PIndexFormat.h < prev    next >
C/C++ Source or Header  |  1996-09-04  |  758b  |  39 lines

  1. /*
  2.  *--- PIndexFormat.h ------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PIndexFormat__
  10. #define __PIndexFormat__
  11.  
  12.  
  13. #include "PMTypes.h"
  14.  
  15. class PIndexFormat
  16. {
  17.  
  18. public:
  19.  
  20.     PIndexFormat
  21.       (    PMBool            bHeadings,
  22.         PMBool            bEmpties,
  23.         short            cFormat,
  24.         const char *    sFollow,
  25.         const char *    sBetPgeNbrs,
  26.         const char *    sBetEntries,
  27.         const char *    sPageRange,
  28.         const char *    sBeforeXRef,
  29.         const char *    sEnd );
  30.  
  31. private:
  32.  
  33.     PIndexFormat();
  34. };
  35.  
  36. #endif
  37.  
  38. // end of PIndexFormat.h
  39.